Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Web3API 0.0.1-prealpha.9
## Bug Fixes
* `@web3api/ens-plugin-js`: Fix the schema.

# Web3API 0.0.1-prealpha.9
## Features
* `@web3api/cli`: CLI Internalized Text Support
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.1-prealpha.9
0.0.1-prealpha.10
14 changes: 11 additions & 3 deletions packages/js/plugins/ens/schema.graphql
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
#import { Query } into ApiResolver from "w3/api-resolver"
# TODO: should import and "implements" the api-resolver core-api schema
# https://github.com/Web3-API/monorepo/issues/75

type Query implements ApiResolver_Query {
type Query {
tryResolveUri(
authority: String!
path: String!
): ApiResolver_MaybeUriOrManifest

getFile(
path: String!
): Bytes # TODO: https://github.com/web3-api/monorepo/issues/100
): Bytes
}

# TODO: should get replaced with an import
# https://github.com/Web3-API/monorepo/issues/75
type ApiResolver_MaybeUriOrManifest {
uri: String
manifest: String
}