Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sandreae committed Mar 21, 2023
1 parent 01244f5 commit 47b25a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions aquadoggo/src/graphql/queries/all_documents.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ pub fn build_all_documents_query(query: Object, schema: &Schema) -> Object {
})
},
)
.argument(InputValue::new(
"filter",
TypeRef::named(filter_name(&schema.id())),
).description("Filter the query based on passed arguments"))
.argument(
InputValue::new("filter", TypeRef::named(filter_name(&schema.id())))
.description("Filter the query based on passed arguments"),
)
.description(format!("Get all {} documents.", schema.name())),
)
}
Expand Down
4 changes: 2 additions & 2 deletions aquadoggo/src/graphql/types/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
mod document;
mod document_fields;
mod document_meta;
mod next_arguments;
mod filter;
mod next_arguments;

pub use document::Document;
pub use document_fields::DocumentFields;
pub use document_meta::DocumentMeta;
pub use filter::{FilterInput, StringFilter};
pub use next_arguments::NextArguments;
pub use filter::{StringFilter, FilterInput};

0 comments on commit 47b25a0

Please sign in to comment.