Skip to content

Commit

Permalink
- update snaps
Browse files Browse the repository at this point in the history
  • Loading branch information
laststylebender14 committed Aug 13, 2024
1 parent e611098 commit 55db191
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ schema @server @upstream {
}

input news__MultipleNewsId {
ids: [news__NewsId]
ids: [news__NewsId]!
}

input news__NewsId {
Expand Down Expand Up @@ -46,5 +46,5 @@ type news__News {
}

type news__NewsList {
news: [news__News]
news: [news__News]!
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ input greetings_a__b__HelloRequest {
}

input news__MultipleNewsId {
ids: [news__NewsId]
ids: [news__NewsId]!
}

input news__NewsId {
Expand Down Expand Up @@ -76,5 +76,5 @@ type news__News {
}

type news__NewsList {
news: [news__News]
news: [news__News]!
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type News {
}

type NewsList {
news: [News]
news: [News]!
}

type Query {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ schema @server @upstream {
}

input map__MapRequest {
map: JSON
map: JSON!
}

type Query {
map__MapService__GetMap(mapRequest: map__MapRequest!): map__MapResponse! @grpc(body: "{{.args.mapRequest}}", method: "map.MapService.GetMap")
}

type map__MapResponse {
map: JSON
map: JSON!
}
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ input movies__MovieInput {
"""
list of cast
"""
cast: [String]
cast: [String]!
duration: google__protobuf__DurationInput
genre: movies__Genre
name: String
Expand Down Expand Up @@ -378,7 +378,7 @@ type movies__Movie {
"""
list of cast
"""
cast: [String]
cast: [String]!
duration: google__protobuf__Duration
genre: movies__Genre
name: String
Expand Down Expand Up @@ -412,5 +412,5 @@ type movies__MoviesResult {
"""
list of movies
"""
result: [movies__Movie]
result: [movies__Movie]!
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ input type__TypeInput {
idOpt: Int
nested: type__Type__NestedInput
nestedOpt: type__Type__NestedInput
nestedRep: [type__Type__NestedInput]
num: [Float]
nestedRep: [type__Type__NestedInput]!
num: [Float]!
str: String
strOpt: String
}

input type__Type__NestedInput {
id: Int
idOpt: Int
num: [Float]
num: [Float]!
str: String
strOpt: String
}
Expand All @@ -40,16 +40,16 @@ type type__Type {
idOpt: Int
nested: type__Type__Nested
nestedOpt: type__Type__Nested
nestedRep: [type__Type__Nested]
num: [Float]
nestedRep: [type__Type__Nested]!
num: [Float]!
str: String
strOpt: String
}

type type__Type__Nested {
id: Int
idOpt: Int
num: [Float]
num: [Float]!
str: String
strOpt: String
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ type person__Person {
email: String
id: Int!
name: String!
phone: [person__PhoneNumber]
stringMap: JSON
phone: [person__PhoneNumber]!
stringMap: JSON!
}

"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ type scalars__Item {
}

type scalars__Result {
result: [scalars__Item]
result: [scalars__Item]!
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ input Id {
}

input news__MultipleNewsId {
ids: [Id]
ids: [Id]!
}

input news__NewsInput {
Expand Down Expand Up @@ -57,7 +57,7 @@ type News {
}

type NewsNewsServiceGetMultipleNew {
news: [News]
news: [News]!
}

type Photo {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ schema @server @upstream @link(src: "../../../tailcall-fixtures/fixtures/protobu
}

input news__MultipleNewsId {
ids: [news__NewsId]
ids: [news__NewsId]!
}

input news__NewsId {
Expand Down Expand Up @@ -46,5 +46,5 @@ type news__News {
}

type news__NewsList {
news: [news__News]
news: [news__News]!
}

0 comments on commit 55db191

Please sign in to comment.