We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dd2654 commit e05ce31Copy full SHA for e05ce31
Tests/Functional/App/config/access/mapping/access.types.yml
@@ -37,7 +37,8 @@ User:
37
type: Boolean
38
resolve: true
39
friends:
40
- access: "@=object === 1"
+ # replace by strict equality after fix compilation expression language bug in sf 4.0
41
+ access: "@=object == 1"
42
type: friendConnection
43
argsBuilder: ConnectionArgs
44
resolve: '@=resolver("friends", [value, args])'
@@ -84,4 +85,5 @@ simpleMutationWithThunkFieldsPayload:
84
85
type: relay-mutation-payload
86
config:
87
fields:
- result: { type: "Int", access: "@=object === 123" }
88
89
+ result: { type: "Int", access: "@=object == 123" }
0 commit comments