query
API reference for the `turbo query` command
Experimental
Run GraphQL queries against your monorepo.
turbo query [query] [flags]When no arguments are passed, the command will open a GraphiQL playground to run queries.
turbo queryWhen passed a query string, the command will run the query and output the results.
turbo query "query { packages { items { name } } }"When passed a file path, the command will read the file and run the query.
turbo query query.gql