mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +08:00
36 lines
625 B
TypeScript
36 lines
625 B
TypeScript
|
import gql from 'graphql-tag';
|
||
|
|
||
|
export const GET_ALL_INSTRUMENTS = gql`
|
||
|
query getAllInstruments {
|
||
|
instrumentAll {
|
||
|
edges{
|
||
|
node {
|
||
|
uid
|
||
|
name
|
||
|
description
|
||
|
keyword
|
||
|
supplier {
|
||
|
uid
|
||
|
name
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}`;
|
||
|
|
||
|
|
||
|
|
||
|
export const GET_ALL_METHODS = gql`
|
||
|
query getAllMethods {
|
||
|
methodAll {
|
||
|
edges{
|
||
|
node {
|
||
|
uid
|
||
|
name
|
||
|
description
|
||
|
keyword
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}`;
|