简体   繁体   English

Express-GraphQL 上的多个过滤器

[英]Multiple Filters On Express-GraphQL

I'm using express-graphql and node-fetch in my application.我在我的应用程序中使用 express-graphql 和 node-fetch。 I am trying to use graphql with my api call to grab data.我试图在我的 api 调用中使用 graphql 来获取数据。 Currently I am doing目前我正在做

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

The AcctType is as follows 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}
  })
});

I'm trying to do something like this:我正在尝试做这样的事情:

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

where i obtain all accounts with id of 2 and accountStatus of active.在那里我获得了 id 为 2 且 accountStatus 为 active 的所有帐户。

GetOpIds is as follows: 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)
}

and getAccountByUrl looks like this和 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)
}

You can try this directly from the code您可以直接从代码中尝试

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