"""Based in graphql-neighbouring-rights."""
type NrContributor @key(fields: "id") {
    """
    When contributorOnlySchedules is true it returns "contributor only" schedules.
    A "contributor only" schedule is a schedule that has a schedule_attachment of type "contributor".
    """
    abacusSchedules(contributorOnlySchedules: Boolean = false): [AbacusSchedule!]!
    id: ID!
}
