Skip to content
New issue

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

add fragmentsOrder config to hasura-allow-list Config API Reference #9907

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
5 changes: 5 additions & 0 deletions website/public/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -3453,6 +3453,11 @@
"globalFragments": {
"description": "Whether to source fragments per-document, or globally. If set, will enforce fragment name uniqueness\nDefault value: \"false\"",
"type": "boolean"
},
"fragmentsOrder": {
"description": "Order sourced fragments per-document, or globally. When set to \"document\", the fragments will be ordered as ther appear in the document\nDefault value: \"global\"",
"enum": ["global", "document"],
"type": "string"
}
}
},
Expand Down