@powerhousedao/vetra-builder-package 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/processors/index.js
CHANGED
|
@@ -231,13 +231,13 @@ export const schema = gql `
|
|
|
231
231
|
website: URL
|
|
232
232
|
}
|
|
233
233
|
|
|
234
|
-
input
|
|
234
|
+
input BuilderAccount_AddPackageInput {
|
|
235
235
|
"Add your inputs here"
|
|
236
236
|
spaceId: OID!
|
|
237
237
|
name: String!
|
|
238
238
|
description: String
|
|
239
239
|
category: String
|
|
240
|
-
author:
|
|
240
|
+
author: BuilderAccount_AuthorInput
|
|
241
241
|
keywords: [String!]
|
|
242
242
|
github: URL
|
|
243
243
|
npm: URL
|
|
@@ -3,7 +3,7 @@ export const schema = gql `
|
|
|
3
3
|
"""
|
|
4
4
|
Subgraph definition for Vetra Read Model
|
|
5
5
|
"""
|
|
6
|
-
type
|
|
6
|
+
type BuilderAccountType {
|
|
7
7
|
id: String!
|
|
8
8
|
profileName: String!
|
|
9
9
|
profileSlug: String!
|
|
@@ -63,7 +63,7 @@ export const schema = gql `
|
|
|
63
63
|
|
|
64
64
|
type Query {
|
|
65
65
|
example(driveId: String!): String
|
|
66
|
-
fetchAllBuilderAccounts: [
|
|
67
|
-
fetchBuilderAccount(id: String!):
|
|
66
|
+
fetchAllBuilderAccounts: [BuilderAccountType!]!
|
|
67
|
+
fetchBuilderAccount(id: String!): BuilderAccountType
|
|
68
68
|
}
|
|
69
69
|
`;
|