``` mutation CreateThing ( $title: String!, $use...
# orm-help
j
Copy code
mutation CreateThing (
	$title: String!,
	$userId: ID!
) {
	createThing (
		data: {
			title: $title
			user: {
				connect: {
					id: $userId
				}
			}
		}
	) {
		...Thing
	}
}