Link: https://docs.graphene-python.org/en/latest/relay/mutations/ In the first code example ``` ... ship_name = input.ship_name faction_id = input.faction_id ... ``` Should be ``` ship_name = input["ship_name"] faction_id = input["faction_id"] ```