Test url: http://localhost:8060/graphql
mutation {
UpdateDB (ID : 100, Name : "Lana", ComplexSetArgs: {C1param: "iota", C2param: "real"})
{
ID
Name
Complex {
C1param
C2param
}
}
}
query {
getDB {
ID
Name
Complex {
C1param
C2param
}
}
setDB (ID : 1, Name : "John", ComplexArg: {C1param: "complex iota", C2param: "complex real"})
{
ID
Name
Complex {
C1param
C2param
}
}
}