Skip to content

Fetch entities from the store based on more than just the entity ID #3282

@AlwaysBuyCheap

Description

@AlwaysBuyCheap

https://ethereum.stackexchange.com/questions/114310/the-graph-filter-query-by-relationship-non-id-value

I have these types:

type Poll @entity {
    id: ID!
    hash: String!
    contributions: [Contribution!]! @derivedFrom(field: "poll")
}

type Contribution @entity {
    id: ID!
    contributorAddress: Bytes!
    poll: Poll!
}

I need to query a poll filtered by the contribution contributorAddress but it seems that I'm only able to do it with the contribution ID.

Here are the mappings:

poll.contributions = new Array<string>(0)

let contributions = poll.contributions
contributions.push(contribution.id)
poll.contributions = contributions

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions