Fix master

master
Christopher Chedeau 2017-06-27 18:31:57 -07:00
parent af309e3acd
commit ee07ff5870
3 changed files with 3 additions and 4 deletions

View File

@ -218,7 +218,6 @@ function genericPrint(path, options, print) {
return concat([
"type ",
path.call(print, "name"),
parent.kind === "TypeExtensionDefinition" ? "" : " =",
" {",
indent(concat([hardline, join(hardline, path.map(print, "fields"))])),
hardline,

View File

@ -43,11 +43,11 @@ query claimsByBookingReferenceAndLastName($bookingReference: String!, $lastName:
# import "./claimsFragment.gql"
query claimsByBookingReferenceAndLastName(
$bookingReference: String!,
$bookingReference: String!
$lastName: String!
) {
claimsByBookingReferenceAndLastName(
bookingReference: $bookingReference,
bookingReference: $bookingReference
lastName: $lastName
) {
...claim

View File

@ -17,7 +17,7 @@ type FeedHomeStories {
query_title: String
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
type FeedHomeStories = {
type FeedHomeStories {
debug_info: String
query_title: String
}