Questions tagged «schema»

模式表示形状,或更一般而言,表示计划。它可以是XML模式或数据库模式。

10
获取GraphQL整个架构查询
我想从服务器获取架构。我可以获取具有类型的所有实体,但是无法获取属性。 获取所有类型: query { __schema { queryType { fields { name type { kind ofType { kind name } } } } } } 如何获取类型的属性: __type(name: "Person") { kind name fields { name type { kind name description } } } 如何仅通过1个请求即可获得具有属性的所有类型?或更妙的是:我如何获得带有变异子,枚举,类型的整个架构...
72 schema  graphql 

7
为SQL查询设置默认架构
有没有一种方法可以设置查询的模式,以便在其余查询中我可以仅按表名引用表,而无需在表名前添加表名? 例如,我想做这样的事情: Use [schemaName] select * from [tableName] 与此相反: select * from [schemaName].[tableName]
68 sql  sql-server  schema 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.