Files
directus/docs/index.md
Kevin Lewis f92b4b6db7 Building Extensions Guides (#18952)
Co-authored-by: Nitwel <mail@nitwel.de>
Co-authored-by: Pascal Jufer <pascal-jufer@bluewin.ch>
Co-authored-by: Daniel Biegler <DanielBiegler@users.noreply.github.com>
2023-08-22 14:51:42 +02:00

8.5 KiB

layout
layout
home
<script setup lang="ts"> import { data } from './.vitepress/data/blog.data.js'; import Pattern from './.vitepress/components/home/Pattern.vue'; import Footer from './.vitepress/components/home/Footer.vue'; import Github from './.vitepress/components/home/icons/Github.vue'; import Badge from './.vitepress/components/Badge.vue' </script>
Resource Hub

Directus Documentation

Explore our resources and powerful data engine to build your projects confidently.

Get Started GitHub
GET /items/products/4?
	fields[]=id,status,title,category,image.id,image.name
query {
	articles_by_id(id: 4) {
		id
		status
		title
		category
		image {
			id
			name
		}
	}
}
await directus.request(
  readItem('articles', 4, {
    fields: [
      'id',
      'status',
      'title',
      'category,',
      { image: ['id', 'name'] }
    ]
  })
);

Latest From The Blog

Project tutorials, tips & tricks, and best practices from the Directus team and community.

View All Posts

Framework Guides

Combine Directus with your favorite framework to create dynamic and efficient web applications.

View All Guides

Self Hosted Directus

Learn how to run Directus on your own machine, customize settings, and deploy with confidence.

Contributing to Directus

There are many ways in which you can contribute to the health and growth of the Directus project.

Join the Community GitHub
<style module> @import './home.css'; </style>