We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e96b73 commit 3814175Copy full SHA for 3814175
graph/src/blockchain/block_stream.rs
@@ -360,10 +360,10 @@ impl<C: Blockchain> TriggersAdapterWrapper<C> {
360
entities: ent,
361
}) = filter.subgraph_filter.first()
362
{
363
- if let Some((dh2, store)) = self.source_subgraph_stores.first() {
+ if let Some(store) = self.source_subgraph_stores.first() {
364
+ let schema = store.input_schema();
365
+ let dh2 = schema.id();
366
if dh == dh2 {
- let schema =
- <dyn crate::components::store::SourceableStore>::input_schema(store);
367
if let Some(entity_type) = ent.first() {
368
let et = schema.entity_type(entity_type).unwrap();
369
0 commit comments