patricianapp/patrician-api

Artist and album name properties available directly on collectionItem (instead of collectionItem.itemDetails)

FOSSforlife opened this issue · 0 comments

We should be able to run this query:

query {
  user(where: {id: "userId"}) {
    collection {
      artist
      albumName
    }
  }
}

Right now, this information requires an extra layer:

query {
  user(where: {id: "userId"}) {
    collection {
      itemDetails {
        artist
        albumName
      }
    }
  }
}