Skip to main content
Module

x/importql/types.graphql

easy way to import and parse graphql files 🎡
Latest
File
type User { firstName: String lastName: String}
input UserInput { firstName: String lastName: String}
type ResolveType { done: Boolean}
type Query { getUser(id: String): User}
type Mutation { setUser(input: UserInput!): ResolveType!}