Skip to content

Commit e886bb2

Browse files
author
Maximilian Reichel
authored
fix: wrong closing bracket (#1515)
1 parent b15e01e commit e886bb2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/graphql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ For each resource, three mutations are available: one for creating it (`create`)
382382

383383
When updating or deleting a resource, you need to pass the **IRI** of the resource as argument. See [Global Object Identifier](#global-object-identifier) for more information.
384384

385-
### Client Mutation Id
385+
### Client Mutation ID
386386

387387
Following the [Relay Input Object Mutations Specification](https://github.com/facebook/relay/blob/v7.1.0/website/spec/Mutations.md#relay-input-object-mutations-specification),
388388
you can pass a `clientMutationId` as argument and can ask its value as a field.
@@ -584,7 +584,7 @@ You can also pass `clientSubscriptionId` as argument and can ask its value as a
584584

585585
In the payload of the subscription, the given fields of the resource will be the fields you subscribe to: if any of these fields is updated, you will be pushed their updated values.
586586

587-
The `mercureUrl` field is the Mercure URL you need to use to [subscribe to the updates](https://mercure.rocks/docs/getting-started#subscribing) on the client side.
587+
The `mercureUrl` field is the Mercure URL you need to use to [subscribe to the updates](https://mercure.rocks/docs/getting-started#subscribing) on the client-side.
588588

589589
### Receiving an Update
590590

@@ -1169,7 +1169,7 @@ use Symfony\Component\Serializer\Annotation\Groups;
11691169
'normalization_context' => ['groups' => ['collection_query']],
11701170
'denormalization_context' => ['groups' => ['mutation']]
11711171
]
1172-
}
1172+
]
11731173
)]
11741174
class Book
11751175
{

0 commit comments

Comments
 (0)