SQLDataSource:用于Apollo GraphQL项目SQL DataSource 源码
SQLDataSource 该软件包将与的易用性结合在一起。 v1.0.0中的重大更改 在v1.0.0中,此库具有一个新的流畅接口,该接口可以与Knex很好地配合使用,并且更加符合Apollo DataSources的精神。 const query = this . knex . select ( "*" ) . from ( "fruit" ) . where ( { id : 1 } ) . cache ( ) ; query . then ( data => /* ... */ ) ; 要使用(或不使用)v1中的缓存功能,只需将.cache()添加到您的Knex查询中。 在下面阅
用户评论