Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Schema Org | 1,160 | 35 | 27 | a month ago | 51 | April 11, 2022 | 1 | mit | PHP | |
A fluent builder Schema.org types and ld+json generator | ||||||||||
Graphql Birdseye | 671 | 2 | a year ago | 44 | September 06, 2019 | 24 | mit | TypeScript | ||
View any GraphQL schema as a dynamic and interactive graph. 🦅 | ||||||||||
Structurae | 482 | 2 | 6 months ago | 75 | July 11, 2022 | 5 | mit | TypeScript | ||
Data structures for high-performance JavaScript applications. | ||||||||||
Codepropertygraph | 368 | 15 | 15 hours ago | 686 | March 24, 2022 | 31 | apache-2.0 | Scala | ||
Code Property Graph: specification, query language, and utilities | ||||||||||
Json Graph Specification | 329 | 2 years ago | 1 | July 08, 2015 | 2 | other | Python | |||
A proposal for representing graph structure (nodes / edges) in JSON. | ||||||||||
Django Schema Graph | 312 | 4 months ago | 9 | March 01, 2020 | 13 | mit | Python | |||
An interactive graph of your Django model structure | ||||||||||
Hgraphdb | 250 | 1 | a day ago | 52 | May 17, 2021 | 7 | apache-2.0 | Java | ||
HBase as a TinkerPop Graph Database | ||||||||||
Apollo Studio Community | 227 | 11 days ago | 62 | |||||||
🎡 GraphQL developer portal featuring an IDE (Apollo Explorer), auto-documentation, metrics reporting, and more. This repo is for issues, feature requests, and preview docs. 📬 | ||||||||||
Intune Powershell Sdk | 216 | 4 months ago | 85 | mit | C# | |||||
Native PowerShell support for invoking Microsoft Intune Graph API to enable IT Pro scenario automation. | ||||||||||
Tensorfx | 190 | 6 years ago | 1 | March 08, 2017 | 13 | apache-2.0 | Python | |||
TensorFlow framework for training and serving machine learning models |
Graph tool for Doctrine. Relies on Graphviz.
Install the latest version with
composer require --dev alexandresalome/doctrine-extra-bundle
Then, enable the bundle by adding the following line in the app/AppKernel.php
file of your project:
// app/AppKernel.php
class AppKernel extends Kernel
{
public function registerBundles()
{
//...
if (in_array($this->getEnvironment(), ['dev', 'test'])) {
// ...
// Because the vendor code could be not present, you should check if the bundle is here before using it.
$bundles[] = new Alex\DoctrineExtraBundle\AlexDoctrineExtraBundle();
}
// ...
}
// ...
}
php app/console doctrine:mapping:graphviz
If you want to create a PDF file out of it, with Linux:
.. code-block:: bash
php app/console doctrine:mapping:graphviz | dot -Tpdf -oout.pdf
xdg-open out.pdf
A set of sample entities are available to test internally the schema generations. You can generate the graph for any of the samples (located in Tests/Fixtures) by running:
./Resources/bin/graph Simple | dot -Tpdf -oout.pdf
xdg-open out.pdf