feat(projects): list, create and update.
This commit is contained in:
14
src/projects/queries.ts
Normal file
14
src/projects/queries.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { gql } from '@apollo/client';
|
||||
|
||||
export const PROJECT = gql`
|
||||
query Project($id:String!) {
|
||||
project(id: $id) {
|
||||
id
|
||||
name
|
||||
comment
|
||||
webUrl
|
||||
sshUrl
|
||||
webHookSecret
|
||||
}
|
||||
}
|
||||
`
|
Reference in New Issue
Block a user