radar/twist-v2

View on GitHub
frontend/src/Book/Notes/ElementWithInfoFragment.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import gql from "graphql-tag";

export default gql`
  fragment elementWithInfo on Element {
    id
    identifier
    content
    tag
    image {
      id
      path
      caption
    }
    chapter {
      title
      part
      position
      permalink
      commit {
        sha
        branch {
          name
        }
      }
    }
  }
`;