我是 HERE |
$docLib = $clientContext.Web.Lists.GetByTitle("IT Documents");
# Below uses $docLib so it cannot be executed properly unless $docLib is assigned correct value
$clientContext.Load($docLib);
# And below fails as the above is not executed successfully
$clientContext.ExecuteQuery();
的新手,根据我的理解,它不限于某些graphql
。因此,从理论上讲,我可以data source
来查询任何数据源,例如graphql
,sql db
,NoSql
等。
我有一个big data
项目,我想知道是否可以使用react/redux
从graphql
查询数据。在这种模式下,我没有redux store
,graphql server
是我的redux store
的数据源。所有graphql
都发生在客户端。如果有任何更改graphql
状态的动作,它将触发与store
连接的react component
进行重新渲染。
这有可能吗?我需要在graphql client
之上实现graphql server
吗?如果是这样,我该怎么办?