Giter Club home page Giter Club logo

Comments (5)

simonjbeaumont avatar simonjbeaumont commented on July 17, 2024 2

@JetForMe thanks for taking the time to file this issue.

I can confirm I can reproduce this.

Looking at our example package at Examples/GreetingService, we don't specify a description in the OpenAPI document—only on the parameter and the response:

...
paths:
  /greet:
    get:
      operationId: getGreeting
      parameters:
      - name: name
        required: false
        in: query
        description: A name used in the returned greeting.
        schema:
          type: string
      responses:
        '200':
          description: A success response with a greeting.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Greeting'

When I build and take a look at the docs, here's what I see:

% swift build --package-path Examples/GreetingService/
...
Build complete! (154.18s)

% grep -C3 "func getGreeting" Examples/GreetingService/.build/plugins/outputs/greetingservice/GreetingServiceClient/OpenAPIGenerator/GeneratedSources/Types.swift
    /// Operation `getGreeting` performs `GET` on `/greet`
    ///
    /// - Remark: Generated from the `getGreeting` operation.
    func getGreeting(_ input: Operations.getGreeting.Input) async throws
        -> Operations.getGreeting.Output
}
/// Server URLs defined in the OpenAPI document.

If I add a description to the operation...

diff --git a/Examples/GreetingService/openapi.yaml b/Examples/GreetingService/openapi.yaml
index c670a49..f1cf5c5 100644
--- a/Examples/GreetingService/openapi.yaml
+++ b/Examples/GreetingService/openapi.yaml
@@ -9,6 +9,7 @@ paths:
   /greet:
     get:
       operationId: getGreeting
+      description: Gets a greeting.
       parameters:
       - name: name
         required: false

...and rebuild, I see no change to the generated documentation on func getGreeting(_:).

I think there's probably a few places where we haven't plumed through all the docs from the OpenAPI document, but we want to be doing that.

from swift-openapi-generator.

czechboy0 avatar czechboy0 commented on July 17, 2024 1

Just so I understand, are you saying the provided description Returns metadata about the API, including version. is not showing up in the generated documentation comment above the method?

The synthesized Operation getRoot performs GET on / should only be the last line of the comment, with the user-provided comment prepended to that.

If you're seeing something else, can you also provide the snippet of the generated code, please?

from swift-openapi-generator.

czechboy0 avatar czechboy0 commented on July 17, 2024 1

The comment isn't processed in any way, so what you put into the description field in YAML/JSON will get added to the comment. Theoretically you could use docc-specific syntax, but since the OpenAPI document is language-agnostic, I'd probably stick just to normal markdown syntax.

from swift-openapi-generator.

czechboy0 avatar czechboy0 commented on July 17, 2024

Thanks @simonjbeaumont, renamed accordingly.

from swift-openapi-generator.

JetForMe avatar JetForMe commented on July 17, 2024

That was fast, thanks! Do you think this works with a full-blown description written in DocC syntax?

from swift-openapi-generator.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.