`Position` argument deprecation

We recently deprecated the position argument for the create_group mutation. You can still specify the new group's location on the board using the recently released relative_to and position_relative_method arguments. You can find all of the details about these new arguments in our documentation!

mutation {
	create_group (board_id: 1234567890, group_name: "new group", relative_to: "test group", position_relative_method: before_at) {
		id
	}
}