apollo-client
GitHubThe industry-leading GraphQL client for TypeScript, JavaScript, React, Vue, Angular, and more. Apollo Client delivers powerful caching, intuitive APIs, and comprehensive developer tools to accelerate your app development.
apollo-client Specification
Located in src/local-state/__tests__/LocalState/fixtures/localSchema.graphql on branch HEAD
Unknown
GRAPHQL
0.2 KB
Raw GRAPHQL Specification
extend type Query {
currentUserId: ID
}
extend type User {
isLoggedIn: Boolean!
favoriteFood: Food
}
type Food {
name: String
categories(limit: Int, offset: Int!): [FoodCategory!]
}
enum FoodCategory {
ITALIAN
}