Tag: enums
-
How do i define an enum in react native
8 Basically what I’m trying to achieve is send info to the server without quotations e.g Admin instead of “Admin”, but as we all know Graphql will throw an error is the variable is not defined or is not in quotations. javascript react-native enums graphql Share Improve this question Follow asked May 2, 2018 at…
-
Use of enum in apollo server 4
0 I am learning to build a GraphQL API, and I’d like to usethe type enum In my database, the data looks like this : const missions = [ { id: "1", name: "Mission 1", status: "in progress", }, ]; And and my schema and resolvers like this : const typeDefs = gql` enum Status…