Skip to content

Duelivotni/graphQlServer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

link for opening in browser: http://localhost:8080/graphiql

CREATE NEW RECORD mutation { addCustomer( input : { fullName : "FullName" orders : [{name : "OrderName" price : 99.99}] } ) { fullName id orders { id name price } } }

READ { getAllCustomers { id fullName orders { id name price } } }

READ WITH SEARCH PARAMETER { getCustomersWithOrder(orderName : "OrderName") { id fullName orders { id name price } } }

REMOVE CUSTOMER mutation { removeCustomer( customerName : "CustomerToDelete") { fullName id orders { id name price } } }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages