Helps you build a GraphQL object ready to execute queries @param graphQLSchema the schema to use @return a builder of GraphQL objects
(GraphQLSchema graphQLSchema)
| 247 | * @return a builder of GraphQL objects |
| 248 | */ |
| 249 | public static Builder newGraphQL(GraphQLSchema graphQLSchema) { |
| 250 | return new Builder(graphQLSchema); |
| 251 | } |
| 252 | |
| 253 | /** |
| 254 | * This helps you transform the current GraphQL object into another one by starting a builder with all |
no outgoing calls