當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript apollo-boost.query函數代碼示例

本文整理匯總了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,
           })),
         )
     : []
開發者ID:Pajn,項目名稱:RAXA,代碼行數:28,代碼來源:nodeTypes.ts

示例2: query

 async query(queryString: string) {
   const promise = this.client.query({
     query: gql`
       ${queryString}
     `,
   });
   AppContext.syncServerSettings();
   return promise;
 }
開發者ID:danielwii,項目名稱:asuna-admin,代碼行數:9,代碼來源:graphql.ts

示例3:

 const getDevices = () =>
   raxaClient
     .query<any>({
       query: gql`
         query {
           devices {
             id
             value: id
             name
           }
         }
       `,
     })
     .then(({data}) => data.devices)
開發者ID:Pajn,項目名稱:RAXA,代碼行數:14,代碼來源:nodeTypes.ts

示例4: loadSchemas

 async loadSchemas() {
   return this.serverClient
     .query({
       query: gql`
         {
           sys_modelSchemas {
             name
             schema
           }
         }
       `,
       fetchPolicy: 'no-cache',
     })
     .then(fp.get('data.sys_modelSchemas'));
 }
開發者ID:danielwii,項目名稱:asuna-admin,代碼行數:15,代碼來源:graphql.ts

示例5: loadSystemSettings

 async loadSystemSettings() {
   return this.serverClient
     .query({
       query: gql`
         {
           kvs(collection: "system.server") {
             key
             name
             type
             value
           }
         }
       `,
     })
     .then(fp.get('data.kvs'));
 }
開發者ID:danielwii,項目名稱:asuna-admin,代碼行數:16,代碼來源:graphql.ts

示例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')));
 }
開發者ID:danielwii,項目名稱:asuna-admin,代碼行數:18,代碼來源:graphql.ts


注:本文中的apollo-boost.query函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。