How to create query with multi options for parameter in graphql

67 Views Asked by At

I want to create query with multi options for parameter

Example:

My query is query ($username: String, $phone: String, $name: String)

When work I can type:

`query (username: "08789456")`

or query (username: "08789456", name: "Ryan")

It can have many option parameter but can not use all them.

0

There are 0 best solutions below