How to send byte array (Blob) to GraphQL mutation

感情迁移 提交于 2019-12-23 03:25:23

问题


We have a GraphQL mutation with a byte array (Blob) field. How can I use tools like Insomnia or GraphQL playground to send byte array data to test the API?

mutation {
  saveSomething(something: {
    contentByteArray: [97, 110, 103, 101, 108, 111]
  }) {
    content
  }
}

来源:https://stackoverflow.com/questions/57446927/how-to-send-byte-array-blob-to-graphql-mutation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!