Skip to content

Commit efc175c

Browse files
authored
Update _POP references
This deprecated syntax was still being used
1 parent c11c5a0 commit efc175c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

modules/ROOT/pages/mutations/update.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -221,9 +221,9 @@ a|
221221
|===
222222
====
223223

224-
=== `_POP`
224+
=== `pop`
225225

226-
`_POP` expects a single `Int` value as input.
226+
`pop` expects a single `Int` value as input.
227227

228228
Consider the following type definitions, a `Movie` with a property array called `tags`:
229229

@@ -237,7 +237,7 @@ type Movie @node {
237237

238238
You can pop from this `tags` property array:
239239

240-
.Mutation with a single `_POP`
240+
.Mutation with a single `pop`
241241
====
242242
[source, graphql, indent=0]
243243
----
@@ -268,7 +268,7 @@ tags: ['a', 'b']
268268

269269
Or, for more than one property from the array:
270270

271-
.Mutation with two `_POP`
271+
.Mutation with two `pop`
272272
====
273273
[source, graphql, indent=0]
274274
----
@@ -311,7 +311,7 @@ type Movie @node {
311311

312312
Then, you can pop from both the `tags` and `moreTags` property arrays:
313313

314-
.Mutation with `_POP` from two different arrays
314+
.Mutation with `pop` from two different arrays
315315
====
316316
[source, graphql, indent=0]
317317
----

0 commit comments

Comments
 (0)