Type Alias GraphqlBlockByType

GraphqlBlockByType: {
    [BlockType in GraphqlBlockType | OperationType]: Exclude<
        GraphqlBlock,
        { type: Exclude<GraphqlBlockType | OperationType, BlockType> },
    >
}

Extracts the full GraphQL block type by the given block type.