"""
This interface represents an Orchard Label, i.e. a Vendor or a Subaccount.
"""
interface Label {
    # This field needs a custom resolver because of this bug: https://github.com/neo4j-graphql/neo4j-graphql-js/issues/471
    id: LabelId!
    labelSoundRecording(isrc: String!): LabelSoundRecording
    subaccountId: Int!
        @deprecated(reason: "Temporary for federation. Use `id.subaccountId`.")
    vendorId: Int!
        @deprecated(reason: "Temporary for federation. Use `id.vendorId`.")
    uuid: ID!
}
