Skotti
Skotti
Same issue, would loved to be able todo this
To resolve issue use rsync options like: ``` javascript gulp.src('../path/outside/**') .pipe(rsync({ root: '../path/outside', destination: '/target/directory' })); ``` See https://www.npmjs.com/package/gulp-rsync#root
This seemed to do the trick for me. ```ruby module HasNodesFieldDecorator def field_options puts 'I was called' super.merge(type: [Types::NodeType, null: true]) end end module HasNodeFieldDecorator def field_options puts 'I was...
Many have already pointed out the workaround already. Here is a quick two liner for those curious. (Does the same thing as other solutions posted). ```ruby GraphQL::Types::Relay::PageInfo.include ApolloFederation::Object GraphQL::Types::Relay::PageInfo.shareable ```...
You could technically place those lines anywhere. I chose to place it at the top of my `graphql_schema.rb`. You could also place it in an initializer as well.