({
queries,
queriesById,
queriesId,
}: {
readonly queries?: Queries;
readonly queriesById?: {[queriesId: string]: Queries};
readonly queriesId?: string;
})
| 581 | ); |
| 582 | |
| 583 | const ContextQueries = ({ |
| 584 | queries, |
| 585 | queriesById, |
| 586 | queriesId, |
| 587 | }: { |
| 588 | readonly queries?: Queries; |
| 589 | readonly queriesById?: {[queriesId: string]: Queries}; |
| 590 | readonly queriesId?: string; |
| 591 | }) => ( |
| 592 | <Provider queries={queries} queriesById={queriesById}> |
| 593 | <ContextQueriesChild queriesId={queriesId} /> |
| 594 | </Provider> |
| 595 | ); |
| 596 | |
| 597 | const ContextQueriesChild = ({queriesId}: {readonly queriesId?: string}) => ( |
| 598 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…