简体   繁体   中英

Using Int as name in GraphQL Schema

So, I was creating a graphql schema,

type Details {
1: User!
2: User!
3: User!
id: String!
item: String!
}

What I want is to use the Int (1, 2, 3) in my Schema but not sure how. Someone must have been in the same situation before, help me figure it out.

Names in GraphQL can include numbers, but they cannot start with a number.

If you need to map over an existing API that returns numbers as fields, you can do a mapping such as this one: Graphql: How to map fields that start with number

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM