From 6ae2fa259de7b1ab424234f3f19cfc6dfc102828 Mon Sep 17 00:00:00 2001 From: Brian Beck Date: Mon, 12 Dec 2016 09:43:17 -0800 Subject: [PATCH] Tweak collections field description, try codecov.io reporting --- .travis.yml | 1 + src/types/helpers.js | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) 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)