0 votes
in GraphQL by
What do you know by Fields in GraphQL?

1 Answer

0 votes
by

The keys of an object that are used in the GraphQL query are known as Fields.

For example:

{  

employee{  

name  

salary  

}  

}  

In the above query, 'name' and 'salary' are fields.

Related questions

0 votes
asked Apr 10, 2023 in GraphQL by Robindeniel
0 votes
asked Apr 10, 2023 in GraphQL by Robindeniel
...