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/packages / core / auth / user / queries / GetPaymentsQuery.graphql.js
Size: Mime:
import { gql } from 'apollo-boost';
export default gql `
  query GetPaymentsQuery {
    getUserPayments {
      status

      cards {
        cardId
        identifier

        address {
          addressId
          firstName
          lastName
          addressLine1
          addressLine2
          city
          state
          country
          postalCode
          email
          telephone
        }

        cardNumber
        cardType
        expirationMonth
        expirationYear
        isDefault
        lastFourDigits
        nameOnCard
        firstName
        lastName
        type
      }
    }
  }
`;
//# sourceMappingURL=GetPaymentsQuery.graphql.js.map