-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
Name '__index' must not begin with '__', which is reserved by GraphQL introspection #91
Labels
bug
Something isn't working
Comments
Found the source of the error here: https://github.com/graphql-python/graphql-core/blob/619a77a7d79415aca63da5d7070249ed0a7ac3b5/src/graphql/type/validate.py#L192 if name.startswith("__"):
self.report_error(
f"Name {name!r} must not begin with '__',"
" which is reserved by GraphQL introspection.",
ast_node,
) |
One of the causes of this is https://fivethirtyeight.datasettes.com/fivethirtyeight/pollster-ratings~2Fpollster-ratings which has a column called:
|
I'm going to try turning a prefix |
simonw
added a commit
to simonw/fivethirtyeight-datasette
that referenced
this issue
Nov 19, 2022
simonw
added a commit
to simonw/fivethirtyeight-datasette
that referenced
this issue
Nov 19, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Seeing this error here:
https://fivethirtyeight.datasettes.com/graphql/fivethirtyeight?query=%7B%0A%20%20generic_ballot_polls(filter%3A%7Bpollster_rating_name%3A%7Beq%3A%22YouGov%22%7D%7D)%20%7B%0A%20%20%20%20totalCount%0A%20%20%20%20nodes%20%7B%0A%20%20%20%20%20%20pollster%0A%20%20%20%20%20%20sponsor_ids%0A%20%20%20%20%20%20sponsors%0A%20%20%20%20%20%20partisan%0A%20%20%20%20%20%20display_name%0A%20%20%20%20%20%20pollster_rating_name%0A%20%20%20%20%20%20fte_grade%0A%20%20%20%20%20%20population%0A%20%20%20%20%20%20population_full%0A%20%20%20%20%20%20methodology%0A%20%20%20%20%20%20office_type%0A%20%20%20%20%20%20start_date%0A%20%20%20%20%20%20end_date%0A%20%20%20%20%20%20tracking%0A%20%20%20%20%20%20created_at%0A%20%20%20%20%20%20notes%0A%20%20%20%20%20%20url%0A%20%20%20%20%20%20stage%0A%20%20%20%20%20%20dem%0A%20%20%20%20%20%20rep%0A%20%20%20%20%20%20ind%0A%20%20%20%20%20%20question_id%0A%20%20%20%20%20%20poll_id%0A%20%20%20%20%20%20cycle%0A%20%20%20%20%20%20state%0A%20%20%20%20%20%20pollster_id%0A%20%20%20%20%20%20pollster_rating_id%0A%20%20%20%20%20%20sample_size%0A%20%20%20%20%20%20seat_number%0A%20%20%20%20%20%20sponsor_candidate%0A%20%20%20%20%20%20nationwide_batch%0A%20%20%20%20%20%20rowid%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A
The text was updated successfully, but these errors were encountered: