Vendor
The Vendor type represents a vendor in the system. A vendor is a company that sells energy to consumers.
type Vendor {
id: UUID!
name: String!
logo: String!
}
Fields
Vendor.id ● UUID! non-null scalar
The unique identifier of the vendor.
Vendor.name ● String! non-null scalar
The name of the vendor.
Vendor.logo ● String! non-null scalar
The logo of the vendor in base64. Example: data:image/png;base64,....
Member Of
User object