feat: Extend App pages with tabs and data
This commit is contained in:
22
packages/web/src/graphql/queries/get-app.ts
Normal file
22
packages/web/src/graphql/queries/get-app.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import { gql } from '@apollo/client';
|
||||
|
||||
export const GET_APP = gql`
|
||||
query GetApp($name: String!) {
|
||||
getApp (name: $name) {
|
||||
name
|
||||
iconUrl
|
||||
docUrl
|
||||
fields {
|
||||
key
|
||||
label
|
||||
type
|
||||
required
|
||||
readOnly
|
||||
placeholder
|
||||
description
|
||||
docUrl
|
||||
clickToCopy
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
Reference in New Issue
Block a user