PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of Hicri   Laravel GraphQL   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Documentation
Class: Laravel GraphQL
Implements an API using GraphQL to query objects
Author: By
Last change:
Date: 4 days ago
Size: 449 bytes
 

Contents

Class file image Download

Example

graphql?query={product(id:1){id,title}}
{
    user(id:3){
        id,
        name,
        email
    }
},
mutation{
    createUser(name: "hello", email: "hello@gmail.com", password: "123456"){
        name,
        email,
        password
    },
    updateUser(id: "1", name: "hello1", email: "price11.shanie@example.com"){
        id,
        name
    } ,
    deleteUser(id:11){
        name
    }
}