GraphQL code intel doesn't work #9756
Description
I have the GraphQL extension enabled, and with https://github.com/sourcegraph/sourcegraph/pull/8099 and sourcegraph/code-intel-extensions#206 my understanding is that GraphQL schema files like https://sourcegraph.com/github.com/sourcegraph/sourcegraph/-/blob/cmd/frontend/graphqlbackend/schema.graphql#L541:12 (latest master) should have code intel.
But there are no symbols found in the symbols sidebar, and no hovers for types from the schema - instead, I do get hovers that point to same-name symbols found in Go code:
The symbols query comes back empty:
It seems like then the codeintel extension falls back to searching the whole repo, but it doesn't filter it to only GraphQL files (I could see why this may be desirable, but am curious if this is as-designed).
Now, what's weird is that on some commits, I do get symbols and also same-file hovers:
Also, the extension page of the GraphQL page seems to show screenshots of Python code?