api-platform / api-platform/core

[GraphQl] Support for unions and interfaces for search functionality

Aperta
#2,927 5 commenti 4 reazioni 0 assegnatari Vedi su GitHub
GraphQL
Lingua principale
PHP
Stelle
2.6k
Fork
980
Merge medio
2g 2h
PR unite (30g)
51

Descrizione

I am trying to create a general search functionality in my app that can return multiple types of objects. For each type of object I want to retrieve different fields.

In the graphQl specification this is supported using interfaces and unions. See this example below:
```GraphQl
type Query {
# Search across all content
search(query: String!): [SearchResult]
}

union SearchResult = Conference | Festival | Concert | Venue
```

```GraphQl
query {
search(query: "Madison") {
... on Venue {
id
name
address
}

... on Festival {
id
name
performers
}

... on Concert {
id
name
performingBand
}

... on Conference {
speakers
workshops
}
}
}
```
See [this guide](https://docs.aws.amazon.com/appsync/latest/devguide/interfaces-and-unions.html) for more details.

I tried making all my entities extend a 'base' entity and creating the search query on that entity, but that did not work.

Thanks in advance!

Guida per i contributori

Apri la guida per i contributori

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.