NoSQL database design. MongoDB document modeling and aggregation pipeline, DynamoDB single-table design with GSI/LSI strategies, Cassandra partition key design, Neo4j graph modeling and Cypher queries, time-series databases, and database selection guidance.
From godmodenpx claudepluginhub arbazkhan971/godmodegodmode/NoSQL database design. MongoDB document modeling and aggregation pipeline, DynamoDB single-table design with GSI/LSI strategies, Cassandra partition key design, Neo4j graph modeling and Cypher queries, time-series databases, and database selection guidance.
/godmode:nosql # Interactive NoSQL design workflow
/godmode:nosql --mongodb # MongoDB document modeling and aggregation
/godmode:nosql --dynamodb # DynamoDB single-table design with GSI/LSI
/godmode:nosql --cassandra # Cassandra partition key and wide-row design
/godmode:nosql --neo4j # Neo4j graph modeling and Cypher queries
/godmode:nosql --timeseries # Time-series database design (InfluxDB, TimescaleDB)
/godmode:nosql --compare # Compare NoSQL databases for a use case
/godmode:nosql --migrate # Plan migration from SQL to NoSQL or between NoSQL
/godmode:nosql --model # Design data model for specified access patterns
/godmode:nosql --index # Design indexing strategy for a NoSQL database
/godmode:nosql --aggregate # Build MongoDB aggregation pipeline
/godmode:nosql --graph-query # Write Cypher queries for Neo4j
"nosql: <description> -- <database>, <key design decisions>"After NoSQL design: /godmode:query for query optimization, /godmode:migrate for data migration, or /godmode:postgres if PostgreSQL turns out to be the better fit.
/godmode:nosql --compare # MongoDB vs DynamoDB for our use case
/godmode:nosql --dynamodb # Single-table design for multi-tenant SaaS
/godmode:nosql --mongodb --aggregate # Build aggregation pipeline for analytics
/godmode:nosql --neo4j # Graph model for recommendation engine
/godmode:nosql --cassandra # IoT sensor data model with time bucketing