Changeset View
Changeset View
Standalone View
Standalone View
swh/graphql/schema/schema.graphql
Show First 20 Lines • Show All 599 Lines • ▼ Show 20 Lines | type Revision implements SWHNode & Node { | ||||
swhid: SWHID! | swhid: SWHID! | ||||
""" | """ | ||||
Message associated to the revision | Message associated to the revision | ||||
""" | """ | ||||
message: BinaryString | message: BinaryString | ||||
""" | """ | ||||
Revision author | Revision authors | ||||
""" | """ | ||||
author: Person | author: [Person] | ||||
""" | """ | ||||
Revision committer | Revision committers | ||||
""" | """ | ||||
committer: Person | committer: [Person] | ||||
""" | """ | ||||
Commit date | Commit date | ||||
""" | """ | ||||
committerDate: Date | committerDate: Date | ||||
""" | """ | ||||
Revision date | Revision date | ||||
▲ Show 20 Lines • Show All 79 Lines • ▼ Show 20 Lines | type Release implements SWHNode & Node { | ||||
""" | """ | ||||
The message associated to the release | The message associated to the release | ||||
""" | """ | ||||
message: BinaryString | message: BinaryString | ||||
""" | """ | ||||
Release author | Release author | ||||
""" | """ | ||||
author: Person | author: [Person] | ||||
""" | """ | ||||
Release date | Release date | ||||
""" | """ | ||||
date: Date | date: Date | ||||
""" | """ | ||||
Type of release target | Type of release target | ||||
▲ Show 20 Lines • Show All 445 Lines • Show Last 20 Lines |