Closed gillpritpals closed 6 years ago
`@GraphQLProperty(name = "business") public class MerchantFinancingLoanSearchBusiness {
String legalBusinessName; @GraphQLProperty(name = "federalTaxId") String tin; @GraphQLProperty(name = "businessName") String DBA;`
gives you:
business { DBA : businessNametin : federalTaxIdlegalBusinessName }
Here is the request builder
GraphQLRequestEntity requestEntity = GraphQLRequestEntity.Builder().headers(uriHeaders) .request(MerchantFinancingLoanSearchLoanAccounts.class) .arguments((new Arguments("findLoanAccounts", new Argument("start", Integer.parseInt(loanAccountsSearchRequest.getOffset())), new Argument("end", Integer.parseInt(loanAccountsSearchRequest.getLimit())), new Argument("criteria", criteriaInput)))) .url(configData.getProperty("loanAccountssearch.url", "")).build();
`@GraphQLProperty(name = "business") public class MerchantFinancingLoanSearchBusiness {
gives you:
business { DBA : businessNametin : federalTaxIdlegalBusinessName }
Here is the request builder
GraphQLRequestEntity requestEntity = GraphQLRequestEntity.Builder().headers(uriHeaders) .request(MerchantFinancingLoanSearchLoanAccounts.class) .arguments((new Arguments("findLoanAccounts", new Argument("start", Integer.parseInt(loanAccountsSearchRequest.getOffset())), new Argument("end", Integer.parseInt(loanAccountsSearchRequest.getLimit())), new Argument("criteria", criteriaInput)))) .url(configData.getProperty("loanAccountssearch.url", "")).build();