簡體   English   中英

Express-GraphQL 上的多個過濾器

[英]Multiple Filters On Express-GraphQL

我在我的應用程序中使用 express-graphql 和 node-fetch。 我試圖在我的 api 調用中使用 graphql 來獲取數據。 目前我正在做

const QueryType = new GraphQLObjectType({
  name: "Query",
  fields: () => ({
    acctsFromRelation: {
      type: new GraphQLList(AcctType),
      args: {
       id: {type: GraphQLString},
       status: {type: GraphQLString}
      },
      resolve: (root, args) => getOpIds(args)
    }
  })
});

AcctType如下

 const AcctType = new GraphQLObjectType({
  name: "acct",
  fields: () => ({
    id: {type: GraphQLString},
    name: {type: GraphQLString},
    clientType: {type: GraphQLString},
    accountStatus: {type: GraphQLString,
    args: {
      status: {type: GraphQLString}
    }},
    primaryContact: {type: contactType},
    billingAddress: {type: billingType}
  })
});

我正在嘗試做這樣的事情:

{ acctsFromRelation (id: "2") {
  id
  name
  accountStatus (status: "active")
  primaryContact {
    firstName
    lastName
    phone
    email
  }
  billingAddress {
    address1
    address2
    city
    state
    postalCode
    country
  }
}
}

在那里我獲得了 id 為 2 且 accountStatus 為 active 的所有帳戶。

GetOpIds 如下:

function getOpIds (ids) {
  return fetch(API CALL THAT GIVES IDS)
    .then(res => res.json())
    .then(json => json.map((element) => getAccountByUrl(element.id)))
    .catch(err => err)
}

和 getAccountByUrl 看起來像這樣

function getAccountByUrl (ids) {
  return fetch(URL THAT LOOKS UP 1 ID at a TIME)
    .then(res => res.json())
    .then(json => json)
    .catch(err => err)
}

您可以直接從代碼中嘗試

const query = `query AcctsFromRelation($id: ID, $status: String){acctsFromRelation(id: $id, status: $status)}`;
        const variables = { id: id, status: status };
        return new Promise((resolve, reject) => {
          request("/graphql", query, variables).then(data => {
            resolve(data.acctsFromRelation);
          });
        });

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM