Home
Blog
Showcase
Community
Introduction
Overview
Introduction To TinaCMS
Getting Started
Using the Tina Editor
FAQ
Core Concepts
Content Modeling
Data Fetching
Visual Editing
Querying Content
Overview
Writing custom queries
Editing
Overview
Markdown & MDX
Block-based editing
Single Document Collections
Customizing Tina
Overview
Validation
Custom Field Components
Custom List Rendering
Format and Parse Input
Filename Customization
Before Submit function
Going To Production
Overview
Tina Cloud
Self-Hosted
Drafts
Overview
Draft Fields
Editorial Workflow
Guides
Overview
Framework Guides
Separate Content Repo
Querying Tina Content at Runtime
Internationalization
Migrating From Forestry
Further Reference
Overview
Config
Schema
The "tina" folder
The TinaCMS CLI
Media
Search
Content API
Tina's edit state
The "tinaField" helper
Self-Hosted Components

Overview

The tina folder is where the configuration, schema and UI customization for TinaCMS is located.

The tina folder is normally at the root of the repo (unless a mono repo setup is being used). It has the following folder structure:

  • config.{ts,tsx,js}
  • queries folder (optional)
  • __generated___ folder
    • _graphql.json
    • _lookup.json
    • _schema.json
    • frags.gql
    • queries.gql
    • schema.gql
  • tina-lock.json

Config.{ts,tsx,js}

This file contains the definition for the project's schema, as well as the Tina configuration object. The schema must be the default export of this file.

See our "TinaCloud Starter" for an example of how this file is used. The default export of the file must be defineConfig({}).

import { defineConfig } from 'tinacms'
export default defineConfig({
schema: schema,
// ...
})
For help defining the Tina schema, see our content modelling documentation

queries folder (optional)

The queries folder is optional and is used by the experimental generated client. The queries that are defined in this folder will automatically be attached to the generated client when it is built.

tina-lock.json

This is where the compiled schema info is stored. This file must be checked into source control and pushed to GitHub. The reason for this is that TinaCloud uses the compiled schema in order to resolve documents. Any time your site's schema or tina versions are updated, you will need to run tinacms dev locally to trigger an update to this file, and push the updated version to GitHub.

__generated__ folder

This is where all the files that are generated during the schema build process are stored. This directory can be ignored from git, as it is generated at build time with tinacms build.

_graphql.json

The Graphql AST (represented in JSON).

_lookup.json

This is a lookup file that is used to resolve document names.

_schema.json

The Graphql Schema AST (represented in JSON).

types.{js,ts}

This file is where all the types of the schema are generated. This file is for the user to use in there site if they want to use the types. It is generated on every build.

client.{js,ts}

This file is where all client is generated. This client can be used on the backend and the frontend. It is very lightweight as to not bloat the bundle size. It is generated on every build. Check out this document for more information on how to use the client.

frags.gql

This file contains the raw Graphql fragments that are generated and used by the experimental generated client.

queries.gql

This file contains the raw graphql queries that are generated and used by the experimental generated client.

schema.gql

This file contains the raw graphql schema.

Product

Showcase
TinaCloud
Introduction
How Tina Works
Roadmap

Resources

Blog
Examples
Support
Media

Whats New
TinaCMS
TinaCloud
Use Cases
Agencies
Documentation
Teams
Jamstack CMS
Benefits
MDX
Markdown
Git
Editorial Workflow
Customization
SEO
Comparisons
TinaCMS vs Storyblok
TinaCMS vs Sanity
TinaCMS vs DecapCMS
TinaCMS vs Contentful
TinaCMS vs Builder.io
TinaCMS vs Strapi
Integrations
Astro
Hugo
NextJS
Jekyll