apollo-rs icon indicating copy to clipboard operation
apollo-rs copied to clipboard

Spec compliant GraphQL Tools in Rust.

Results 118 apollo-rs issues
Sort by recently updated
recently updated
newest added

Needed for diagnostics in https://github.com/apollographql/router/pull/5247 . Seems like maybe we want to have a single struct somewhere instead which returns start and end to save a bit of extra work...

## Description `SchemaIntrospectionQuery::split_and_execute` cannot solve the query `{ __typename }` ### Steps to reproduce I'm playing with the introspection with a code similiar to https://github.com/apollographql/apollo-rs/pull/859/files When I use a query...

triage
apollo-compiler
introspection

It could be risky if these are slow to parse or validate, as it's easy to produce a malicious document with many directives. Parsing + validation of a document with...

Found when testing something else: https://github.com/apollographql/router/pull/6035#discussion_r1768865666 With the query `query Invalid { me { name { reviews { body } } } }` where `name` is a String, we get...

It also reports this, which doesn't make sense: ``` Error: interface, union and object types must have a subselection set ╭─[0119_nested_subselection_issue_916.graphql:8:17] │ 8 │ query Invalid { me { name...

Closes #830 This PR `refactors` parser to use `peek_token()` instead of separate `peek()` and `peek_data()` calls. _Changes:_ - Replaced instances of `peek()` / `peek_data()` call pairs. - Removed `unwrap()` by...

For a given valid schema, use a byte string typically [provided by cargo-fuzz](https://rust-fuzz.github.io/book/cargo-fuzz/tutorial.html) as a source of entropy to deterministically generate a valid executable document: ```rust pub fn arbitrary_valid_executable_document( schema:...

What will we need, beyond validation? https://github.com/graphql/graphql-spec/pull/825

triage