BillCommittee
GraphQL type: BillCommittee · Connection: BillCommitteesConnection
Queries
| Query | Returns | Description |
|---|---|---|
allBillCommittees(filter, orderBy, first, last, before, after) | BillCommitteesConnection | Paginated list with filtering and ordering |
billCommitteeById(id: BigInt!) | BillCommittee | Look up by primary key |
Fields
| Field | GraphQL Type | Notes |
|---|---|---|
id | BigInt | PK |
billId | String | required FK |
thomasId | String | required FK |
activities | [String] |
Relationships
Belongs to
| Field | Returns | Via |
|---|---|---|
billByBillId | Bill | billId |
committeeByThomasId | Committee | thomasId |
Example
{
allBillCommittees(
filter: { billId: { equalTo: "hr3590-111" } }
) {
nodes {
activities
committeeByThomasId {
name
chamber
}
}
}
}