Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 4 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion graph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ http-body-util = "0.1"
hyper-util = { version = "0.1", features = ["full"] }
futures01 = { package = "futures", version = "0.1.31" }
lru_time_cache = "0.11"
graphql-parser = "0.4.0"
graphql-parser = "0.4.1"
humantime = "2.3.0"
lazy_static = "1.5.0"
num-bigint = { version = "=0.2.6", features = ["serde"] }
Expand Down
4 changes: 1 addition & 3 deletions server/http/tests/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,7 @@ mod test {

assert_eq!(
message,
"Unexpected `unexpected character \
\'<\'`\nExpected `{`, `query`, `mutation`, \
`subscription` or `fragment`"
"Unexpected unexpected character '<'\nUnexpected end of input\nExpected {, query, mutation, subscription or fragment"
);

let locations = errors[0]
Expand Down
2 changes: 1 addition & 1 deletion store/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ pretty_assertions = "1.4.1"

[dev-dependencies]
clap.workspace = true
graphql-parser = "0.4.0"
graphql-parser = "0.4.1"
1 change: 1 addition & 0 deletions store/test-store/tests/graphql/introspection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -617,6 +617,7 @@ async fn satisfies_graphiql_introspection_query_with_fragments() {
// needs to be regenerated, uncomment this line, and save the output in
// mock_introspection.json
//
// println!("{}", graph::prelude::serde_json::to_string(&data).unwrap());
assert!(same_value(&data, &expected_mock_schema_introspection()));
}

Expand Down
8 changes: 4 additions & 4 deletions store/test-store/tests/graphql/mock_introspection.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
{
"kind": "SCALAR",
"name": "Int",
"description": "4 bytes signed integer\n",
"description": "4 bytes signed integer",
"fields": null,
"inputFields": null,
"interfaces": null,
Expand All @@ -168,7 +168,7 @@
{
"kind": "SCALAR",
"name": "Int8",
"description": "8 bytes signed integer\n",
"description": "8 bytes signed integer",
"fields": null,
"inputFields": null,
"interfaces": null,
Expand Down Expand Up @@ -763,7 +763,7 @@
{
"kind": "SCALAR",
"name": "Timestamp",
"description": "A string representation of microseconds UNIX timestamp (16 digits)\n",
"description": "A string representation of microseconds UNIX timestamp (16 digits)",
"fields": null,
"inputFields": null,
"interfaces": null,
Expand Down Expand Up @@ -1351,7 +1351,7 @@
"fields": [
{
"name": "block",
"description": "Information about a specific subgraph block. The hash of the block\nwill be null if the _meta field has a block constraint that asks for\na block number. It will be filled if the _meta field has no block constraint\nand therefore asks for the latest block\n",
"description": "Information about a specific subgraph block. The hash of the block\nwill be null if the _meta field has a block constraint that asks for\na block number. It will be filled if the _meta field has no block constraint\nand therefore asks for the latest block",
"args": [],
"type": {
"kind": "NON_NULL",
Expand Down
Loading