Files
fennec-fe/src/projects/queries.ts
2021-05-04 21:51:13 +08:00

14 lines
192 B
TypeScript

import { gql } from '@apollo/client';
export const PROJECT = gql`
query Project($id:String!) {
project(id: $id) {
id
name
comment
webUrl
sshUrl
webHookSecret
}
}
`