Skip to content

Commit 3fa5041

Browse files
committed
fix prettier errors on build
1 parent 9e1801b commit 3fa5041

File tree

4 files changed

+25
-21
lines changed

4 files changed

+25
-21
lines changed

graphql_client/tests/input_object_variables/input_object_variables_schema.graphql

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,11 @@ type CaseTestResult {
4949
}
5050

5151
type InputObjectVariablesQuery {
52-
echo(message: Message!, options: Options = { pgpSignature: true }, extern: String = ""): EchoResult
52+
echo(
53+
message: Message!
54+
options: Options = { pgpSignature: true }
55+
extern: String = ""
56+
): EchoResult
5357
testQueryCase(caseTestInput: CaseTestInput!): CaseTestResult
5458
saveRecursiveInput(recursiveInput: RecursiveInput!): Category
5559
}

graphql_client/tests/skip_serializing_none/schema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ input Param {
1212
}
1313

1414
input Author {
15-
id: String,
15+
id: String
1616
name: String!
1717
}
1818

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
query FooBarsQuery {
2+
fooBars {
23
fooBars {
3-
fooBars {
4-
__typename
5-
... on Foo {
6-
fooField
7-
}
8-
... on Bar {
9-
barField
10-
}
11-
... on FooBar {
12-
fooBarField
13-
}
14-
}
4+
__typename
5+
... on Foo {
6+
fooField
7+
}
8+
... on Bar {
9+
barField
10+
}
11+
... on FooBar {
12+
fooBarField
13+
}
1514
}
15+
}
1616
}
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
schema {
2-
query: Query
3-
mutation: Mutation
2+
query: Query
3+
mutation: Mutation
44
}
55

66
directive @defer on FIELD
77

88
type Query {
9-
fooBars: Self
9+
fooBars: Self
1010
}
1111

1212
type Self {
13-
fooBars: Result
13+
fooBars: Result
1414
}
1515

1616
union Result = Foo | Bar | FooBar
1717

1818
type Foo {
19-
fooField: String!
19+
fooField: String!
2020
}
2121

2222
type Bar {
23-
barField: String!
23+
barField: String!
2424
}
2525

2626
type FooBar {
27-
fooBarField: String!
27+
fooBarField: String!
2828
}

0 commit comments

Comments
 (0)