Create GraphQL request
- Create new request from collection context menu (…) and select New Request.
- Select GraphQL as request type with:
- URL: The URL of the GraphQL endpoint.
- Name: The name of the request.
- Click on Create button.

GraphQL request with query
After creating the request:- Go to Query section where you can write and execute all your GraphQL queries
- You can also use the Variables section to pass variables to your query

https://graphqlzero.almansi.me/api
Query builder
Query builder is a tool that helps you build your GraphQL queries easily. It allows you to select the fields you want to retrieve from the API and generate the query for you. Follow the below steps to use Query builder in Bruno.- Click on query builder icon next to prettify icon.

- Select the fields you want to retrieve from the API and generate the query for you.
You can also use the Search input to search for the fields you want to retrieve from the API.

- Click on Send button to execute the query.
Query Builder with mutations
Mutation is use to modify data in the GraphQL API. Follow the below steps to use Mutation in Query builder.- Click on Mutation from query builder.
- Select the fields you want to modify/update from the API and generate the query for you.
- Execute the request by clicking on Send button.
