GraphQL - Resolvers
Which of the following is a valid way to define an argument named
limit of type Int in a GraphQL schema?limit of type Int in a GraphQL schema?Int is a valid scalar type for integers.limit: Int defines limit as Int (nullable), matching type Int. limit: Int! defines non-nullable Int!. limit: String and limit: Boolean use wrong types for Int.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions