Remove GraphQL dependencies

This commit is contained in:
Elnu 2022-07-07 19:26:33 -07:00
parent c134e0bce8
commit 42e13a3ede
3 changed files with 11 additions and 393 deletions

View file

@ -1,9 +1,6 @@
use rusqlite::{params, Connection, Result};
#[macro_use]
extern crate juniper;
#[derive(Debug, GraphQLObject)]
#[graphql(description="A comment on some content, such as a blog post.")]
#[derive(Debug)]
struct Comment {
author: Option<String>, // null is Anonymous
text: String