本文整理汇总了TypeScript中apollo-boost.query函数的典型用法代码示例。如果您正苦于以下问题:TypeScript query函数的具体用法?TypeScript query怎么用?TypeScript query使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了query函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: query
const getMethods = ({
device,
interface: iface,
}: {
device?: string
interface?: string
}) =>
device && iface
? raxaClient
.query<any>({
query: gql`
query($iface: String!) {
interface(id: $iface) {
id
methods
}
}
`,
variables: {iface},
})
.then(({data}) =>
Object.values(data.interface.methods).map((methods: any) => ({
id: methods.id,
value: methods.id,
name: methods.name || methods.id,
})),
)
: []
示例2: query
async query(queryString: string) {
const promise = this.client.query({
query: gql`
${queryString}
`,
});
AppContext.syncServerSettings();
return promise;
}
示例3:
const getDevices = () =>
raxaClient
.query<any>({
query: gql`
query {
devices {
id
value: id
name
}
}
`,
})
.then(({data}) => data.devices)
示例4: loadSchemas
async loadSchemas() {
return this.serverClient
.query({
query: gql`
{
sys_modelSchemas {
name
schema
}
}
`,
fetchPolicy: 'no-cache',
})
.then(fp.get('data.sys_modelSchemas'));
}
示例5: loadSystemSettings
async loadSystemSettings() {
return this.serverClient
.query({
query: gql`
{
kvs(collection: "system.server") {
key
name
type
value
}
}
`,
})
.then(fp.get('data.kvs'));
}
示例6: loadGraphs
async loadGraphs() {
return this.serverClient
.query({
query: gql`
{
__schema {
queryType {
fields {
name
}
}
}
}
`,
})
.then(fp.get('data.__schema.queryType.fields'))
.then(fp.map(fp.get('name')));
}