diff --git a/.travis.yml b/.travis.yml index e2f4941..52f3226 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,3 +16,4 @@ script: after_success: - $(yarn bin)/nyc report --reporter=text-lcov | $(yarn bin)/coveralls + - bash <(curl -s https://codecov.io/bash) diff --git a/src/types/helpers.js b/src/types/helpers.js index f2243b2..a0e81d2 100644 --- a/src/types/helpers.js +++ b/src/types/helpers.js @@ -227,7 +227,9 @@ export const releaseStatus = { export const areas = linkedQuery(AreaConnection) export const artists = linkedQuery(ArtistConnection) -export const collections = linkedQuery(CollectionConnection) +export const collections = linkedQuery(CollectionConnection, { + description: 'A list of collections containing this entity.' +}) export const events = linkedQuery(EventConnection) export const instruments = linkedQuery(InstrumentConnection) export const labels = linkedQuery(LabelConnection)