* Reorganize repo * Overhaul website design and rewrite in NextJS and Typescript * Delete website-publish.yml
16 lines
328 B
TypeScript
16 lines
328 B
TypeScript
import { gql } from 'graphql-tag';
|
|
|
|
import * as fragments from './fragments';
|
|
|
|
// updateRef only works for branches at the moment
|
|
export const updateBranch = gql`
|
|
mutation updateRef($input: UpdateRefInput!) {
|
|
updateRef(input: $input) {
|
|
branch: ref {
|
|
...BranchParts
|
|
}
|
|
}
|
|
}
|
|
${fragments.branch}
|
|
`;
|