PlaceHours: {
    __typename?: "PlaceHours";
    comment?: Maybe<Scalars["String"]>;
    forDays: PlaceHoursForDay[];
    intervals: PlaceHoursIntervalConnection;
    osmTag: Scalars["String"];
    status: PlaceHoursStatus;
    weekStable: Scalars["Boolean"];
}

The opening hours for a place

Type declaration

  • Optional __typename?: "PlaceHours"
  • Optional comment?: Maybe<Scalars["String"]>

    Look up the place hours comment (if any) for the current time or a given datetime.

  • forDays: PlaceHoursForDay[]

    Look up the opening hours for a specific day. Days are calculated according to the local time of the place.

    Will return a maximum of 90 days.

  • intervals: PlaceHoursIntervalConnection

    Look up intervals where the opening hours status/comment for the place changes

  • osmTag: Scalars["String"]

    The opening hours formatted in the OpenStreetMap opening_hours tag format.

    See: https://wiki.openstreetmap.org/wiki/Key:opening_hours/specification

  • status: PlaceHoursStatus

    Look up the open/closed status of the place for the current time or a given datetime.

  • weekStable: Scalars["Boolean"]

    Whether or not the hours are the same each week.

Generated using TypeDoc