mirror of
https://github.com/foss42/apidash.git
synced 2025-12-02 10:49:49 +08:00
12 lines
255 B
Dart
12 lines
255 B
Dart
import '../consts.dart';
|
|
import '../models/models.dart';
|
|
|
|
String? getGraphQLBody(HttpRequestModel httpRequestModel) {
|
|
if (httpRequestModel.hasQuery) {
|
|
return kJsonEncoder.convert({
|
|
"query": httpRequestModel.query,
|
|
});
|
|
}
|
|
return null;
|
|
}
|