mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
* refactor(graphql): Introduce image type * Undo changes to .travis.yml * chore: Upgrade travis to node LTS - URL is available since v10 * chore: use lts Co-authored-by: mattwr18 <mattwr18@gmail.com>
9 lines
172 B
JavaScript
9 lines
172 B
JavaScript
import Resolver from './helpers/Resolver'
|
|
export default {
|
|
Image: {
|
|
...Resolver('Image', {
|
|
undefinedToNull: ['sensitive', 'alt', 'aspectRatio'],
|
|
}),
|
|
},
|
|
}
|