Files
directus/docs/index.md
Bryant Gillespie afdc48eb82 fix hero background showing over content (#19046)
Co-authored-by: Pascal Jufer <pascal-jufer@bluewin.ch>
2023-07-03 08:28:59 +00:00

7.4 KiB

layout
layout
home
<script setup> 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'; </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.items('articles').readOne(4, {
  fields: [
		'id',
		'status',
		'title',
		'category',
		'image.id',
		'image.name'
	],
});

Framework Guides

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

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>