mirror of
https://github.com/moku-project/Moku.git
synced 2026-06-13 09:19:56 -05:00
15 lines
207 B
TypeScript
15 lines
207 B
TypeScript
export const GET_META = `
|
|
query GetMeta($key: String!) {
|
|
meta(key: $key) {
|
|
key value
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const GET_METAS = `
|
|
query GetMetas {
|
|
metas {
|
|
nodes { key value }
|
|
}
|
|
}
|
|
`; |