GraphqlQuery.FragmentInfo (graphql_query v0.3.7)

View Source

Represents information about a GraphQL fragment with its dependencies.

This struct captures essential details about GraphQL fragments, including the fragment name and a list of other fragments it depends on.

Summary

Types

t()

@type t() :: %GraphqlQuery.FragmentInfo{
  fragments: [String.t()],
  location: GraphqlQuery.Location.t() | nil,
  name: String.t()
}