@@ -27,7 +27,7 @@ It generates the type `Actor`:
2727type Actor {
2828 name: String!
2929 age: Int
30- actedIn(where: MovieWhere, options: MovieOptions , directed: Boolean = true): [Movie!]!
30+ actedIn(where: MovieWhere, sort: [MovieSort!]!, limit: Int, offset: Int , directed: Boolean = true): [Movie!]!
3131 actedInAggregate(where: MovieWhere, directed: Boolean = true): ActorMovieActedInAggregationSelection
3232 actedInConnection(where: ActorActedInConnectionWhere, first: Int, after: String, directed: Boolean = true, sort: [ActorActedInConnectionSort!]): ActorActedInConnection!
3333}
@@ -56,7 +56,7 @@ Now the type `Actor` looks like this:
5656----
5757type Actor {
5858 name: String!
59- actedIn(where: MovieWhere, options: MovieOptions , directed: Boolean = true): [Movie!]!
59+ actedIn(where: MovieWhere, sort: [MovieSort!]!, limit: Int, offset: Int , directed: Boolean = true): [Movie!]!
6060 actedInAggregate(where: MovieWhere, directed: Boolean = true): ActorMovieActedInAggregationSelection
6161 actedInConnection(where: ActorActedInConnectionWhere, first: Int, after: String, directed: Boolean = true, sort: [ActorActedInConnectionSort!]): ActorActedInConnection!
6262}
@@ -105,7 +105,7 @@ From the previous type definitions, the type `Actor` produced is:
105105----
106106type Actor {
107107 name: String!
108- actedIn(where: MovieWhere, options: MovieOptions , directed: Boolean = true): [Movie!]!
108+ actedIn(where: MovieWhere, sort: [MovieSort!]!, limit: Int, offset: Int , directed: Boolean = true): [Movie!]!
109109 actedInAggregate(where: MovieWhere, directed: Boolean = true): ActorMovieActedInAggregationSelection
110110 actedInConnection(where: ActorActedInConnectionWhere, first: Int, after: String, directed: Boolean = true, sort: [ActorActedInConnectionSort!]): ActorActedInConnection!
111111}
@@ -135,7 +135,7 @@ In this case, as the argument `aggregate` was passed as false, the type `Actor`
135135type Actor {
136136 name: String!
137137 age: Int
138- actedIn(where: MovieWhere, options: MovieOptions , directed: Boolean = true): [Movie!]!
138+ actedIn(where: MovieWhere, sort: [MovieSort!]!, limit: Int, offset: Int , directed: Boolean = true): [Movie!]!
139139 actedInConnection(where: ActorActedInConnectionWhere, first: Int, after: String, directed: Boolean = true, sort: [ActorActedInConnectionSort!]): ActorActedInConnection!
140140}
141141----
@@ -269,7 +269,7 @@ From the previous type definitions, the type `Actor` produced is:
269269----
270270type Actor {
271271 name: String!
272- actedIn(where: MovieWhere, options: MovieOptions , directed: Boolean = true): [Movie!]!
272+ actedIn(where: MovieWhere, sort: [MovieSort!]!, limit: Int, offset: Int , directed: Boolean = true): [Movie!]!
273273 actedInAggregate(where: MovieWhere, directed: Boolean = true): ActorMovieActedInAggregationSelection
274274 actedInConnection(where: ActorActedInConnectionWhere, first: Int, after: String, directed: Boolean = true, sort: [ActorActedInConnectionSort!]): ActorActedInConnection!
275275}
0 commit comments