6
จะค้นหาฟิลด์ประเภท GraphQL ทั้งหมดโดยไม่ต้องเขียนแบบสอบถามยาว ๆ ได้อย่างไร?
สมมติว่าคุณมีประเภท GraphQL และมีหลายฟิลด์ จะสอบถามทุกช่องได้อย่างไรโดยไม่ต้องเขียนแบบสอบถามยาว ๆ ที่มีชื่อของเขตข้อมูลทั้งหมด ตัวอย่างเช่นหากฉันมีฟิลด์เหล่านี้: public function fields() { return [ 'id' => [ 'type' => Type::nonNull(Type::string()), 'description' => 'The id of the user' ], 'username' => [ 'type' => Type::string(), 'description' => 'The email of user' ], 'count' => [ 'type' => Type::int(), 'description' => 'login count …
131
php
laravel
graphql
graphql-php