OBJECT

Location

Represents a location entity.

link GraphQL Schema definition

  • type Location implements Object {
  • # The location's INLT ID
  • id: ID!
  • # The location's DUNS number.
  • duns: DUNS
  • # The client's unique identifier
  • cid: ID
  • # The Location's FDA Establishment Identification.
  • fei: String
  • # The Location's Employer Identification Number.
  • ein: String
  • # The Locations' address.
  • address: Address!
  • # The Location's name.
  • name: String!
  • # The Location's phone number.
  • phone: Phone
  • # The Location's email
  • email: Email
  • # The Locations's associated importers.
  • importers: [Importer]
  • # The location's URL on app.inlt.com
  • url: URL
  • # The Locations's created time as an ISO string.
  • createdTime: DateTime!
  • # The Locations's updated time as an ISO string.
  • updatedTime: DateTime!
  • }