Skip to main content

BillCommittee

GraphQL type: BillCommittee · Connection: BillCommitteesConnection

Queries

QueryReturnsDescription
allBillCommittees(filter, orderBy, first, last, before, after)BillCommitteesConnectionPaginated list with filtering and ordering
billCommitteeById(id: BigInt!)BillCommitteeLook up by primary key

Fields

FieldGraphQL TypeNotes
idBigIntPK
billIdStringrequired FK
thomasIdStringrequired FK
activities[String]

Relationships

Belongs to

FieldReturnsVia
billByBillIdBillbillId
committeeByThomasIdCommitteethomasId

Example

{
allBillCommittees(
filter: { billId: { equalTo: "hr3590-111" } }
) {
nodes {
activities
committeeByThomasId {
name
chamber
}
}
}
}