Skip to content

Commit f982594

Browse files
committed
Use > rather than . for name paths
1 parent 9b8cdfa commit f982594

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rfcs/OperationExpressions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ colon: `>searchBusinesses(name:)>city`.
254254

255255
We also allow you to reference input objects used in arguments, for example:
256256

257-
`>searchBusinesses(where.size.greaterThan:)>city`
257+
`>searchBusinesses(where>size>greaterThan:)>city`
258258

259259
expands to something like:
260260

@@ -268,7 +268,7 @@ query($whereSizeGreaterThan: Int) {
268268

269269
Further we allow for multiple arguments to be specified, joined with commas:
270270

271-
`>searchBusinesses(where.size.greaterThan:,where.size.lessThan:,where.city.equalTo:)>name`
271+
`>searchBusinesses(where>size>greaterThan:,where>size>lessThan:,where>city>equalTo:)>name`
272272

273273
expands to something like:
274274

@@ -379,7 +379,7 @@ Arguments :
379379
Argument : NamePath :
380380

381381
NamePath :
382-
- Name Indexes? . NamePath
382+
- Name Indexes? > NamePath
383383
- Name Indexes?
384384

385385
Indexes :

0 commit comments

Comments
 (0)