We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When @include exists in realm field, an exception is thrown
query Query_group_agg($id: StringExpression $name: StringExpression $include_id: Boolean = false $include_name: Boolean = false $include_realm: Boolean = false $include_realm_nameCount: Boolean = false $include_realm_nameMax: Boolean = false $include_realm_nameMin: Boolean = false ) { group(id: $id name: $name) { id @include(if: $include_id) name @include(if: $include_name) realm @include(if: $include_realm) { nameCount @include(if: $include_realm_nameCount) nameMax @include(if: $include_realm_nameMax) nameMin @include(if: $include_realm_nameMin) } } }
Maximum call stack size exceeded
After eliminating @include in realm filed, success
query Query_group_agg($id: StringExpression $name: StringExpression $include_id: Boolean = false $include_name: Boolean = false $include_realm: Boolean = false $include_realm_nameCount: Boolean = false $include_realm_nameMax: Boolean = false $include_realm_nameMin: Boolean = false ) { group(id: $id name: $name) { id @include(if: $include_id) name @include(if: $include_name) realm @include(if: $include_realm) { nameCount nameMax nameMin } } }
Any good ideas? Thanks
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
When @include exists in realm field, an exception is thrown
After eliminating @include in realm filed, success
Any good ideas? Thanks
Reproduction
No response
The text was updated successfully, but these errors were encountered: