Hot Chocolatev12
This is documentation for v12, which is no longer actively maintained.
For up-to-date documentation, see the latest stable version.

Input Object Types

We already looked at arguments, which allow us to use simple scalars like String to pass data into a field. GraphQL defines input object types to allow us to use objects as arguments on our fields.

Input object type definitions differ from object types only in the used keyword and in that their fields can not have arguments.

SDL
input BookInput {
title: String
author: String
}

Usage

Input object types can be defined like the following.

C#
public class BookInput
{
public string Title { get; set; }
public string Author { get; set; }
}
public class Mutation
{
public async Task<Book> AddBook(BookInput input)
{
// Omitted code for brevity
}
}

Note: If a class is used as an argument to a resolver and it does not end in Input, Hot Chocolate (by default) will append Input to the type name in the resulting schema.

We can also use a class both as an output- and an input-type.

C#
public class Book
{
public string Title { get; set; }
public string Author { get; set; }
}
public class Mutation
{
public async Task<Book> AddBook(Book input)
{
// Omitted code for brevity
}
}

This will produce the following schema.

SDL
type Book {
title: String
author: String
}
input BookInput {
title: String
author: String
}
type Mutation {
addBook(input: BookInput): Book
}

Note: While it is possible, it is not encouraged, as it complicates future extensions of either type.

Immutable types

If we want our input type classes to be immutable, or we are using nullable reference types, we can provide a non-empty constructor and Hot Chocolate will instead use that when instantiating the input. Just note that

  1. The type of the argument must exactly match the property's type
  2. The name of the argument must match the property name (bar a lowercase first letter)
  3. No setters will be called, so you need to provide arguments for all the properties.

Hot Chocolate validates any custom input constructor at schema build time, so we don't need to worry about breaking things during refactoring!

C#
public class BookInput
{
// No need for the setters now
public string Title { get; }
public string Author { get; }
public BookingInput(string title, string author)
{
Title = title;
Author = author;
}
}

We can also use record types, if we're on C# 9.0+. The equivalent to the above would be:

C#
public record BookingInput(string Title, string Author);

Optional Properties

If we want our input type classes to contain optional properties, we can use the Optional<T> type or mark the properties of the class as nullable. It is important to also define a default value for any non-nullable property that is using the Optional<T> type by adding the [DefaultValue] attribute, otherwise the field will still be required when defining the input.

C#
public class BookInput
{
[DefaultValue("")]
public Optional<string> Title { get; set; }
public string Author { get; set; }
public BookInput(string title, string author)
{
Title = title;
Author = author;
}
}

Also with record types, the equivalent of the above would be:

C#
public record BookInput([property:DefaultValue("")]Optional<string> Title, string Author);

Oneof Input Objects

Oneof Input Objects are a special variant of Input Objects where the type system asserts that exactly one of the fields must be set and non-null, all others being omitted. This is represented in introspection with the __Type.oneField: Boolean field, and in SDL via the @oneOf directive on the input object.

Warning

Oneof Input Objects is currently a draft feature to the GraphQL spec. https://github.com/graphql/graphql-spec/pull/825

This introduces a form of input polymorphism to GraphQL. For example, the following PetInput input object lets you choose between a number of potential input types:

SDL
input PetInput @oneOf {
cat: CatInput
dog: DogInput
fish: FishInput
}
input CatInput { name: String!, numberOfLives: Int }
input DogInput { name: String!, wagsTail: Boolean }
input FishInput { name: String!, bodyLengthInMm: Int }
type Mutation {
addPet(pet: PetInput!): Pet
}

Since the Oneof Input Objects RFC is not yet in the draft stage it is still an opt-in feature. In order to activate it set the schema options to enable it.

C#
builder.Services
.AddGraphQLServer()
...
.ModifyOptions(o => o.EnableOneOf = true);

Once activate you can create Oneof Input Objects like the following:

C#
[OneOf]
public class PetInput
{
public Dog? Dog { get; set; }
public Cat? Cat { get; set; }
}
public interface IPet
{
string Name { get; }
}
public class Dog : IPet
{
public string Name { get; set; }
}
public class Cat : IPet
{
public string Name { get; set; }
}
public class Mutation
{
public Task<IPet> CreatePetAsync(PetInput input)
{
// Omitted code for brevity
}
}

This will produce the following schema.

SDL
input PetInput @oneOf {
dog: DogInput
cat: CatInput
}
input DogInput {
name: String!
}
input CatInput {
name: String!
}
interface Pet {
name: String!
}
type Dog implements Pet {
name: String!
}
type Cat implements Pet {
name: String!
}
type Mutation {
createPet(input: PetInput): Pet
}