You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[outputType](custom_types.md) | *no* | string | Forces the GraphQL output type of the field. Otherwise, return type is used.
76
79
phpType | *no* | string | The PHP type of the field (as you would write it in a Docblock)
77
-
annotations | *no* | array<Annotations> | A set of annotations that apply to this field. You would typically used a "@Logged" or "@Right" annotation here.
80
+
annotations | *no* | array<Annotations> | A set of annotations that apply to this field. You would typically used a "@Logged" or "@Right" annotation here. Available in Doctrine annotations only (not available in the #SourceField PHP 8 attribute)
78
81
79
82
**Note**: `outputType` and `phpType` are mutually exclusive.
[outputType](custom_types.md) | *no*(*) | string | The GraphQL output type of the field.
91
94
phpType | *no*(*) | string | The PHP type of the field (as you would write it in a Docblock)
92
-
annotations | *no* | array<Annotations> | A set of annotations that apply to this field. You would typically used a "@Logged" or "@Right" annotation here.
95
+
annotations | *no* | array<Annotations> | A set of annotations that apply to this field. You would typically used a "@Logged" or "@Right" annotation here. Available in Doctrine annotations only (not available in the #MagicField PHP 8 attribute)
93
96
94
97
(*) **Note**: `outputType` and `phpType` are mutually exclusive. You MUST provide one of them.
0 commit comments