I've tried looking at the documentation to figure out how to accomplish this but got no where. How do I define a schema like this using `Graphene`? ```graphql directive @unique( info: String = "Blah blah" ) on FIELD_DEFINITION | ENUM_VALUE directive @ignore( info: String = Blah blah" ) on OBJECT type ExampleType @ignore(info: "Blah"){ newField: String oldField: String @unique(info: "Blah") } ```