All skills
Skillintermediate

gql 3

```gql query { directory { withNewDirectory(path: "foo") { withNewDirectory(path: "foo/bar/baz") { withNewFile(path: "foo/bar/greeting", contents: "hello, world!\ ") { foo: entries(path: "foo") bar: entries(path: "foo/bar") greeting: file(path: "foo/bar/greeting") { contents } } } } } } ```

Claude Code Knowledge Pack7/10/2026

Overview

query {
  directory {
    withNewDirectory(path: "foo") {
      withNewDirectory(path: "foo/bar/baz") {
        withNewFile(path: "foo/bar/greeting", contents: "hello, world!\
") {
          foo: entries(path: "foo")
          bar: entries(path: "foo/bar")
          greeting: file(path: "foo/bar/greeting") {
            contents
          }
        }
      }
    }
  }
}