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 designing the schema, review different data structures that would be good for indexing. Avoid nested types such as:
[ { "type": "typeA", "value": "value1" }, { "type": "typeB", "value": "value1" } ]
The text was updated successfully, but these errors were encountered:
These are the structures we are looking for: "subScores": [ { "periodValue": "Q1", "score": "7" }, { "periodValue": "Q2", "score": "10" }, { "periodValue": "Q3", "score": "7" }, { "periodValue": "Q4", "score": "0" }, { "periodValue": "OT", "score": "0" }
Sorry, something went wrong.
No branches or pull requests
When designing the schema, review different data structures that would be good for indexing. Avoid nested types such as:
The text was updated successfully, but these errors were encountered: