PHP Classes

File: graphql/schema.graphql

Recommend this page to a friend!
  Classes of Hicri   Laravel GraphQL   graphql/schema.graphql   Download  
File: graphql/schema.graphql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel GraphQL
Implements an API using GraphQL to query objects
Author: By
Last change:
Date: 4 days ago
Size: 363 bytes
 

Contents

Class file image Download
type Query { users: [User] @all user(id: ID @eq): User @find } type User { id: ID, email: String, name: String, password: String } type Mutation { createUser(name: String!, email: String!, password: String!): User! @create updateUser(id: ID!, name: String!, email:String!): User! @update deleteUser(id: ID!): User @delete }