Estoy tratando de filtrar mis resultados en función de una relación de uno a muchos y se describe en la documentación de postgraphile-plugin-connection-filter que describe cómo hacerlo. He habilitado esto pero las opciones no aparecen.
He reiniciado el servidor para asegurarme de que se ha tomado lo último, pero aún no tuve suerte.
En resumen, las relaciones del filtro de conexión no funcionan en absoluto. Si lo fuera, vería las opciones. 
postgraphile(process.env.DATABASE_URL || dbUrl, 'public', { appendPlugins: [ConnectionFilterPlugin], connectionFilterRelations: true, watchPg: true, graphiql: true, connectionFilterAllowNullInput: true, connectionFilterAllowEmptyObjectInput: true, enhanceGraphiql: true, enableQueryBatching: true, })##Consulta
query ($firstname: String) { allArtists(filter: {firstname: {likeInsensitive: $firstname}, awardsByArtistIdExists: true }) { edges { node { artistId firstname nationality { "errors": [ { "message": "Field \"awardsByArtistIdExists\" is not defined by type \"ArtistFilter\".", "locations": [ { "line": 2, "column": 65 } ] } ] }