Mutation examples

Some examples are needed for mutations. Here is one for generating a new branch

mutation{
 branchCreate(
      branch: {
			   streamId: "98fa53b0a6"
			   name: "GraphQLgeneratedBranch"
			   description: "yet another branch"
       }
    )
}
4 Likes