Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/graphql / dist / graphql-modules / common / schema / Address.graphql.js
Size: Mime:
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const apollo_server_1 = require("apollo-server");
exports.addressTypeTemplate = `
  addressId: ID!
  addressType: String
  isDefault: Boolean!

  firstName: String
  middleName: String
  lastName: String

  email: String
  telephone: String

  addressLine1: String
  addressLine2: String
  addressLine3: String
  city: String
  state: String
  county: String
  country: String
  postalCode: String
`;
exports.default = apollo_server_1.gql `
  # @deprecated, this is used for response only, need to make it inline with request params
  type AddressInfo {
    addressType: String
    city: String
    country: String
    county: String
    state: String
    postalCode: String
    firstName: String
    lastName: String
    addressLine1: String
    addressLine2: String
    phoneNumber: String
    telephone: String
    email: String

    # added for Accounts
    id: String
    userName: String
    addressLine3: String
  }

  # @@standardize
  type AddressType {
    ${exports.addressTypeTemplate}
  }
`;
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQWRkcmVzcy5ncmFwaHFsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2dyYXBocWwtbW9kdWxlcy9jb21tb24vc2NoZW1hL0FkZHJlc3MuZ3JhcGhxbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLGlEQUFtQztBQUV0QixRQUFBLG1CQUFtQixHQUFHOzs7Ozs7Ozs7Ozs7Ozs7Ozs7OztDQW9CbEMsQ0FBQTtBQUVELGtCQUFlLG1CQUFHLENBQUE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7TUF5QlosMkJBQW1COztDQUV4QixDQUFBIn0=