Skip to content

u- return alias field #630

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

u- return alias field #630

wants to merge 1 commit into from

Conversation

wenj91
Copy link

@wenj91 wenj91 commented Apr 28, 2022

query:

{
    hello{
        idAlias:id
        id
        world
    }
}

return:

map[string]interface{} {
    "idAlias": 1,
    "id": 2,
    "world": "world"
}

before result:

{
    "idAlias": 2,
    "id": 2,
    "world": "world"
}

expect:

{
    "idAlias": 1,
    "id": 2,
    "world": "world"
}

this PR fix this issue

@coveralls
Copy link

Coverage Status

Coverage decreased (-0.02%) to 91.971% when pulling 424d61d on wenj91:master into f02a1c9 on graphql-go:master.

@astudnev
Copy link

astudnev commented Sep 4, 2022

I met with the same issue... any plans to merge it?

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants