Skip to content

Commit

Permalink
Update example queries/responses (#78)
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Siwiec <rizzza@users.noreply.github.com>
  • Loading branch information
rizzza authored Feb 5, 2024
1 parent da8282b commit bda8994
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ mutation{
}
)
{
ip_block_type{
ipBlockType{
name,
id
}
Expand All @@ -89,7 +89,7 @@ Output:
{
"data": {
"createIPBlockType": {
"ip_block_type": {
"ipBlockType": {
"name": "super-sweet-ip-block-type",
"id": "ipamibt-9xaBQDAFmLOdceu9zO6Rj"
}
Expand All @@ -103,7 +103,7 @@ Output:
Input:
```graphql
query{
ip_block_type(id:"ipamibt-9xaBQDAFmLOdceu9zO6Rj"){
ipBlockType(id:"ipamibt-9xaBQDAFmLOdceu9zO6Rj"){
name,
id
}
Expand All @@ -114,7 +114,7 @@ Output:
```json
{
"data": {
"ip_block_type": {
"ipBlockType": {
"name": "super-sweet-ip-block-type",
"id": "ipamibt-9xaBQDAFmLOdceu9zO6Rj"
}
Expand Down

0 comments on commit bda8994

Please sign in to comment.