My `.graphqlconfig.yml` file currently looks like ...
# orm-help
a
My
.graphqlconfig.yml
file currently looks like this:
Copy code
projects:
  APP_NAME:
    schemaPath: ./schema.graphql
    includes: ['src/**/*.js']
    extensions:
      endpoints:
        dev:
          url: <https://URL/api>
n
this looks good from a first glance. do you receive an error message? what is the behaviour you expect, what is the actual behaviour?
a
I don't see any errors in the output of vscode. When I am focused inside a
gql
tag I do see that a GraphQL element is added to my bottom bar and is white. My concern is the
schemaPath
. I'm not sure if that should be referencing a file, but I have nothing like that in my source code. My expectation is that I would get typeahead inside of the
gql
tag, or some type of benefit for having the plugin installed. As it currently exists I only get some syntax highlighting. It may also be worth pointing out that we are not using Prisma as a backend, but a custom GraphQL BFF layer. Our other GraphiQL tools work fine though.
n
Did I understand that right, there is no schema file in your project?
a
Correct. This is a Create React App project. We talk to an API, but it isn't in the same repo. Any schema info we get has to come from a network request.