Can a subgraph access both indexed and non-indexed event properties?

I’m new to The Graph, and I was curious to know whether both of these properties could are treated the same in terms of making a subgraph?

event Transfer(
address indexed _from,
address _to
)

Does it matter if a property is marked as indexed in terms of accessing a property when using the Graph?

1 Like